home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / utilitys / 93 / makersh / makefile < prev    next >
Makefile  |  1987-10-12  |  777b  |  33 lines

  1. #
  2. #   This program may be freely
  3. #   distributed , copied,and modified so long
  4. #   as a fee is not charged. However,
  5. #   I reserve all rights available to
  6. #   me under The Copyright Act.
  7. #   If you find any bugs please feel free to contact me.
  8. #        David DeGeorge
  9. #        Princeton,New Jersey
  10. #        March 1987
  11. #
  12. #   USENET:  ....princeton!idacrd!dld
  13. #   COMPUSERVE: 74176,3210
  14. #   GEnie: DEGEORGE
  15. #
  16. OBJS = main.o util.o graphics.o output.o
  17. TARGET = makersh.ttp
  18. CFLAGS = -O 
  19. LDFLAGS =
  20. #-----------------------------
  21. #TARGET= makersh.prg
  22. #CFLAGS = -O -DGEM
  23. #LDFLAGS = -VGEM 
  24. $(TARGET) : $(OBJS)
  25.     cc $(LDFLAGS) $(OBJS) -o $(TARGET)
  26. $(OBJS): makersh.h globals.h makefile
  27.  
  28. clean:
  29.     rm $(OBJS)
  30. makersh.arc: 
  31.     make -i clean
  32.     arc a makersh.arc *
  33.